home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1995.rar / 1995 / JUL / MC9507 / moveform.dfm / moveform.txt
Text File  |  1995-03-28  |  768b  |  43 lines

  1. object Form1: TForm1
  2.   Left = 337
  3.   Top = 208
  4.   Width = 219
  5.   Height = 165
  6.   Caption = 'Move Countries'
  7.   Font.Color = clWindowText
  8.   Font.Height = -13
  9.   Font.Name = 'System'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   TextHeight = 16
  13.   object ButtonMove: TButton
  14.     Left = 61
  15.     Top = 52
  16.     Width = 89
  17.     Height = 33
  18.     Caption = 'Move'
  19.     TabOrder = 0
  20.     OnClick = ButtonMoveClick
  21.   end
  22.   object BatchMove1: TBatchMove
  23.     Destination = Table2
  24.     Mode = batCopy
  25.     Source = Table1
  26.     Left = 8
  27.     Top = 80
  28.   end
  29.   object Table1: TTable
  30.     Active = True
  31.     DatabaseName = 'DBDEMOS'
  32.     TableName = 'COUNTRY.DB'
  33.     Left = 8
  34.     Top = 16
  35.   end
  36.   object Table2: TTable
  37.     DatabaseName = 'IBLOCAL'
  38.     TableName = 'AMERICA'
  39.     Left = 8
  40.     Top = 48
  41.   end
  42. end
  43.